home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / gate / Gate_Start.c < prev    next >
C/C++ Source or Header  |  1992-06-05  |  2KB  |  61 lines

  1. /* 
  2.  * Gate_Start.c --
  3.  *
  4.  *    Source code for the Gate_Start library procedure.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: /sprite/src/lib/c/gate/RCS/Gate_Start.c,v 1.1 92/06/04 22:03:23 jhh Exp $ SPRITE (Berkeley)";
  18. #endif not lint
  19.  
  20. #include <stdio.h>
  21. #include <gate.h>
  22.  
  23. /*
  24.  * Information about the current gateway database file:
  25.  */
  26.  
  27. FILE *        gateFile = (FILE *) NULL;
  28. char *        gateFileName = "/etc/gateway";
  29.  
  30. /*
  31.  *-----------------------------------------------------------------------
  32.  *
  33.  * Gate_Start --
  34.  *
  35.  *    Begin reading from the the current gateway file.
  36.  *
  37.  * Results:
  38.  *    0 is returned if all went well.  Otherwise -1 is returned
  39.  *    and errno tells what went wrong.
  40.  *
  41.  * Side Effects:
  42.  *    If the file was open, it is reset to the beginning. If it was not
  43.  *    open, it is now.
  44.  *
  45.  *-----------------------------------------------------------------------
  46.  */
  47.  
  48. int
  49. Gate_Start()
  50. {
  51.     if (gateFile != (FILE *) NULL) {
  52.     rewind(gateFile);
  53.     } else {
  54.     gateFile = fopen(gateFileName, "r");
  55.     if (gateFile == (FILE *) NULL) {
  56.         return -1;
  57.     }
  58.     }
  59.     return 0;
  60. }
  61.